home *** CD-ROM | disk | FTP | other *** search
/ Power CD-ROM!! 8 / Power CD-ROM 8.iso / prgmming / oldutil / tk.doc < prev    next >
Text File  |  1994-12-10  |  2KB  |  51 lines

  1.         TK --- A Simple Token Parsing Filter for DOS 2.0
  2.  
  3.                 (c) Copyright 1984 by   Jim Mott
  4.                                         3710 Slopeview Drive
  5.                                         Sunnyvale, CA 95148
  6.                                         (408) 274-2620
  7.  
  8. All rights reserved.  Permission granted to use this software for 
  9. personal, noncommercial purposes only.
  10.  
  11. This  program  is designed to be a filter for DOS  2.0.  It  will 
  12. tokenize  its input and allow subsetting and/or single token  per 
  13. line output.
  14.  
  15. The format of the command is:
  16.  
  17.     TK {/RJx | /LJx} {/0} {{/v} | {/v/v}}
  18.  
  19.     where /RJx means right justify all tokens to x positions
  20.     /LJx means left justify all tokens to x positions
  21.     In the two entries x must be in [1..15]
  22.     /0   means output one token per line
  23.     /v   means  select  token v for output.  You may  select  any 
  24.          number,  up  to 255,  of tokens to output.  Repeats  are 
  25.          allowed and you may change the order of the input tokens 
  26.          on the output line.
  27.  
  28. For  example,  to  extract the list of users from a VM  directory 
  29. file  and  write a sorted list of them without passwords  to  the 
  30. printer the following command line would be used.
  31.  
  32.     FIND "USER " < DIRECT.VM | TK/LJ8/2/4/5/6/7/8/9 | SORT > PRN
  33.  
  34.  
  35. For example, to find a list of all sub-directories of the current 
  36. directory sorted by sub-directory name we would use the following 
  37. command line:
  38.  
  39.     DIR | FIND "<DIR>" | TK/LJ8/1/3/4 | SORT | MORE
  40.  
  41.  
  42. For  example,  to generate a sorted list of all words used  in  a 
  43. document  with  one  word  per line we could  use  the  following 
  44. command line:
  45.  
  46.     TK/RJ8/0 < FOOBAR.DOC | SORT | MORE
  47.  
  48.              --------------------------------------
  49. Downloaded  from the IBMPC special interest area  of  CompuServe, 
  50. uploaded to PCanada by Bob Leigh, PC1022.
  51.